home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’96 / Sessions ’96 / ODF- Easy OpenDoc / MacHack(2) / Sources / PartInfo.fr < prev    next >
Encoding:
Text File  |  1996-06-17  |  1.4 KB  |  76 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PartInfo.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef FWPART_FR
  15. #include "FWPart.fr"
  16. #endif
  17.  
  18. #ifndef DEFINES_K
  19. #include "Defines.k"
  20. #endif
  21.  
  22. #ifndef BINDING_K
  23. #include "Binding.k"
  24. #endif
  25.  
  26. //----------------------------------------------------------------------------------------
  27. //    PartInfo Resource
  28. //----------------------------------------------------------------------------------------
  29.  
  30. resource FW_RPartInfo(kPartInfoID)
  31. {
  32.     // ----- Icon ID
  33.     kDocumentIconID,
  34.     
  35.     // ----- Part Name
  36.     kMacHackEditorUserString,
  37.     
  38.     // ----- PartKind
  39.     kMacHackKind
  40. };
  41.  
  42. //----------------------------------------------------------------------------
  43. //    About Resource
  44. //----------------------------------------------------------------------------
  45.  
  46. resource FW_RAbout(kAbout)
  47. {
  48.     // ----- Icon ID
  49.     kEditorIconID,
  50.     
  51.     // ----- Part Name
  52.     FW_RStyledText
  53.     (
  54.         FW_FIX(18), 
  55.         FW_kBold, 
  56.         "times", 
  57.         "MacHack Demo"
  58.     ),
  59.     // ----- Version Number
  60.     FW_RStyledText
  61.     (
  62.         FW_FIX(9),
  63.         FW_kPlain,
  64.         "geneva",
  65.         "ODF Release 1"
  66.     ),
  67.     // ----- Credits
  68.     FW_RStyledText
  69.     (
  70.         FW_FIX(9),
  71.         FW_kPlain,
  72.         "geneva",
  73.         "MacHack Demo\r\r\r"
  74.         "Written by the ODF Team.\r"
  75.     )
  76. };